home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 15879 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  620 b 

  1. Path: newsbf02.news.aol.com!not-for-mail
  2. From: mrdavc@aol.com (Mrdavc)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: what does this code do?
  5. Date: 8 Apr 1996 13:21:08 -0400
  6. Organization: America Online, Inc. (1-800-827-6364)
  7. Sender: root@newsbf02.news.aol.com
  8. Message-ID: <4kbhu4$83@newsbf02.news.aol.com>
  9. References: <3167217D.AC7@lex.infi.net>
  10. Reply-To: mrdavc@aol.com (Mrdavc)
  11. NNTP-Posting-Host: newsbf02.mail.aol.com
  12.  
  13. linePtrs[currentLine][lineLen[currentLine]] = (char) key;
  14.  
  15. so does that mean that the preceeding code is identical to the following:
  16.  
  17. linePtrs[currentLine] = (char) key;
  18. lineLen[currentLine] = (char) key;
  19.